Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Mariana theme color palette #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

guillemap
Copy link

The current conversion comes from the hsl reference from the Sublime theme.
However the color conversion to RGB uses a different color space, and the current colors look a bit faded.

I have added the real RGB color values by exctracting them from sublime UI.

For reference, the hex colors that derive from direct conversion vs the real Sublime colors:

name reference hsl hex from reference hsl real hex rgb from real hex
MARIANA hsla(210, 15, 22) #303841 #2e3842 rgba( 46, 56, 66)
DARK_0 MARIANA.clone(l=11) #181c20 #171c22 rgba( 23, 28, 34)
DARK_1 MARIANA.clone(l=13) #1c2126 #1c2228 rgba( 28, 34, 40)
DARK_2 MARIANA.clone(l=19) #293038 #283039 rgba( 40, 48, 57)
MEDIUM_0 MARIANA.clone() #303841 #2e3842 MARIANA.clone()
MEDIUM_1 MARIANA.clone(l=40, a=75) #576575bf #546578bf rgba( 83, 99,113, 75)
MEDIUM_2 MARIANA.clone(l=45) #627284 #5F7287 rgba(179,183,187)
LIGHT_0 hsla(220, 12, 69) #d8dee9 #a5acba rgba(165,172,186)
LIGHT_1 hsla(220, 28, 88) #dbdfe6 #d7deea rgba(215,222,234)
RED hsla(357, 79, 65) #ec5f66 #ff5260 rgba(255, 82, 96)
CORAL hsla( 13, 93, 66) #f97b58 #ff714c rgba(255,113, 76)
ORANGE hsla( 32, 93, 66) #f9ae58 #ffaa43 rgba(255,170, 67)
YELLOW hsla( 40, 94, 68) #fac761 #ffc34a rgba(255,195, 74)
MINT hsla(114, 31, 68) #99c794 #8cc98f rgba(140,201,143)
TEAL hsla(180, 36, 54) #5fb4b4 #36b7b5 rgba( 54,183,181)
BLUE hsla(210, 50, 60) #6699cc #559bd1 rgba( 85,155,209)
PURPLE hsla(300, 30, 68) #c695c6 #cf92c9 rgba(207,146,201)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant